sync.readOnly.m (field)

24 uses

	sync (current package)
		map.go#L75: 	m       map[any]*entry
		map.go#L125: 	e, ok := read.m[key]
		map.go#L132: 		e, ok = read.m[key]
		map.go#L164: 	if len(read.m) == 0 && !read.amended {
		map.go#L173: 	if len(read.m) > 0 || read.amended {
		map.go#L230: 	if e, ok := read.m[key]; ok {
		map.go#L239: 	if e, ok := read.m[key]; ok {
		map.go#L252: 			m.read.Store(&readOnly{m: read.m, amended: true})
		map.go#L298: 	e, ok := read.m[key]
		map.go#L302: 		e, ok = read.m[key]
		map.go#L356: 	if e, ok := read.m[key]; ok {
		map.go#L367: 	if e, ok := read.m[key]; ok {
		map.go#L387: 			m.read.Store(&readOnly{m: read.m, amended: true})
		map.go#L400: 	if e, ok := read.m[key]; ok {
		map.go#L410: 	if e, ok := read.m[key]; ok {
		map.go#L432: 	e, ok := read.m[key]
		map.go#L436: 		e, ok = read.m[key]
		map.go#L487: 			read = readOnly{m: m.dirty}
		map.go#L496: 	for k, e := range read.m {
		map.go#L512: 	m.read.Store(&readOnly{m: m.dirty})
		map.go#L523: 	m.dirty = make(map[any]*entry, len(read.m))
		map.go#L524: 	for k, e := range read.m {